home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ ICQ 1.xpl < prev    next >
Text File  |  2000-08-07  |  1KB  |  48 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Instant Messaging\ICQ"
  5. "NAME"="URL Settings"
  6. "LANGUAGE"="VBScript"
  7. "VERSION"="1.04"
  8. "TEXT 1"="Default Host"
  9. "DESCRIPTION 1"="You can use this plug-in to change the options for ICQ (TM)."
  10. "DESCRIPTION 2"="It allows you to use a different server if you wish, or have been experiencing problems with the default server."
  11. "DESCRIPTION 3"="The default value is "icq.mirabilis.com" for Default Host."
  12. "DESCRIPTION 4"="ICQ may be obtained at http://www.icq.com/."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17. "COMMENT 2"="Thanks to CptSiskoX for the settings and the idea."
  18.  
  19.  
  20. sPath="HKCU\Software\Mirabilis\ICQ\DefaultPrefs\"
  21. sV1="Default Server Host"
  22. Sub Plugin_Initialize 
  23.  if RegPathExists(sPath) then
  24.     s=RegReadValue(sPath & sV1)
  25.     SetUIElement 1,s
  26.  else
  27.     Disable
  28.  end if
  29. End Sub
  30.  
  31.  
  32. Sub Plugin_CheckData(ElementIndex)
  33. End Sub
  34.  
  35.  
  36.  
  37. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  38.  s=GetUIElement(1)
  39.  Call RegWriteValue(sPath & sV1,s,1)
  40. End Sub
  41.  
  42.  
  43. Sub Plugin_Terminate 
  44. End Sub
  45.  
  46.  
  47.  
  48.